home *** CD-ROM | disk | FTP | other *** search
/ NetGuide 2004 March / NETGUIDN0403.iso / pc / featured / Windows / orgcdfull.exe / setup_su.exe / {app} / Templates / Simple Table.dax < prev    next >
Encoding:
OrangeCD theme  |  2003-07-23  |  1.6 KB  |  54 lines

  1. /*
  2.     Simple Table.dax
  3.     Copyright (c) Firetongue Software, 1997-2003
  4. */
  5.  
  6. SORTBY1["Sorting field 1"]        : field = artistsort;
  7. SORTBY2["Sorting field 2"]        : field = title;
  8. SORTBY3["Sorting field 3"]        : field = year;
  9.  
  10. BGCOLOR        ["Background color"]                : color = #FFFFFF;
  11. TEXTCOLOR    ["Normal text color"]                : color = #000000;
  12. LINKCOLOR    ["Link color"]                        : color = #0000FF;
  13. VLINKCOLOR    ["Visited link color"]                : color = #800080;
  14.  
  15. TEXTFONT    ["Normal font"]                        : font = "small Times New Roman";
  16. HEADERFONT    ["Header font"]                        : font = "large Times New Roman";
  17.  
  18. ::start/web
  19.  
  20. <html>
  21. <head>
  22. <!--[CharSet/]-->
  23. <title>My music collection</title>
  24. <style><!--
  25. body,td,a { font: $TEXTFONT }
  26. h2 { font: $HEADERFONT }
  27. //--></style>
  28. </head>
  29. <body bgcolor=$BGCOLOR text=$TEXTCOLOR link=$LINKCOLOR vlink=$VLINKCOLOR>
  30. <h2><b>My music collection</b></h2>
  31. <table cellpadding=2 cellspacing=0 border=1 color=#808080><tbody>
  32. <tr>
  33.     <td><b>Artist</b></td>
  34.     <td><b>Title</b></td>
  35.     <td><b>Year</b></td>
  36.     <td><b>Time</b></td>
  37.     <td><b>Album kind</b></td>
  38. </tr>
  39. <!--[Album(all,$SORTBY1,$SORTBY2,$SORTBY3)]-->
  40. <tr>
  41.     <td><!--[Artist]--> <!--[/Artist]--></td>
  42.     <td><!--[Title]--> <!--[/Title]--></td>
  43.     <td><!--[Year]--> <!--[/Year]--></td>
  44.     <td><!--[AlbumTime]--> <!--[/AlbumTime]--></td>
  45.     <td><!--[AlbumKind]--> <!--[/AlbumKind]--></td>
  46. </tr>
  47. <!--[/Album]-->
  48. </table>
  49. <hr>
  50. <!-- please support OrangeCD by keeping this link. Thank you! -->
  51. <i>Page generated by OrangeCD - <a href="http://www.firetongue.com"><i>ultimate music cataloging software</i></a>.</i>
  52. </body>
  53. </html>
  54.